-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix empty container layer history and UI #21251
Conversation
I think this can be solved with adding Another solution is to wrap the value inside the <!-- CSS -->
<style>
.ui.table td pre {
white-space: pre-wrap;
word-break: break-word;
}
</style>
<!-- HTML -->
<table>
...
<tbody>
<tr>
<td>the.key</td>
<td><pre>the value here</pre></td>
</tr>
</tbody>
</table> |
Table overflow has it's own weird rules that generally don't follow what other HTML elements do. Maybe it's also good to wrap the JSON into a |
You can add the |
Would be nice if key would be vertically aligned to top |
* upstream/main: Update bluemonday (go-gitea#21281) Add support for authentication based on reverse proxy email (go-gitea#19949) Do not allow organisation owners add themselves as collaborator (go-gitea#20043) Feature: Case-insensitive "find files in repo" (go-gitea#21269) Better repo API unit checks (go-gitea#21130) Fix empty container layer history and UI (go-gitea#21251) Add filetree on left of diff view (go-gitea#21012)
Fixes #21248
before
after